//comment - just for your information, notes // # - a compiler directive //iostream - the input-output library #include using namespace std; //program logic starts here void main() { //cout - is the console output stream //<< stream insertion operator cout << "This is the day the Lord has made"; //endl - end of line character cout << endl; //variable declaration //int - 4 byte whole number int i; cin >> i; cout << i; }